home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / mozilla-firefox / include / autocomplete / nsIAutoCompletePopup.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-05-08  |  6.6 KB  |  184 lines

  1. /*
  2.  * DO NOT EDIT.  THIS FILE IS GENERATED FROM nsIAutoCompletePopup.idl
  3.  */
  4.  
  5. #ifndef __gen_nsIAutoCompletePopup_h__
  6. #define __gen_nsIAutoCompletePopup_h__
  7.  
  8.  
  9. #ifndef __gen_nsISupports_h__
  10. #include "nsISupports.h"
  11. #endif
  12.  
  13. /* For IDL files that don't want to include root IDL files. */
  14. #ifndef NS_NO_VTABLE
  15. #define NS_NO_VTABLE
  16. #endif
  17. class nsIAutoCompleteInput; /* forward declaration */
  18.  
  19.  
  20. /* starting interface:    nsIAutoCompletePopup */
  21. #define NS_IAUTOCOMPLETEPOPUP_IID_STR "65f6cd46-22ec-4329-bb3b-bcd1103f2204"
  22.  
  23. #define NS_IAUTOCOMPLETEPOPUP_IID \
  24.   {0x65f6cd46, 0x22ec, 0x4329, \
  25.     { 0xbb, 0x3b, 0xbc, 0xd1, 0x10, 0x3f, 0x22, 0x04 }}
  26.  
  27. class NS_NO_VTABLE nsIAutoCompletePopup : public nsISupports {
  28.  public: 
  29.  
  30.   NS_DEFINE_STATIC_IID_ACCESSOR(NS_IAUTOCOMPLETEPOPUP_IID)
  31.  
  32.   /* readonly attribute nsIAutoCompleteInput input; */
  33.   NS_IMETHOD GetInput(nsIAutoCompleteInput * *aInput) = 0;
  34.  
  35.   /* readonly attribute AString overrideValue; */
  36.   NS_IMETHOD GetOverrideValue(nsAString & aOverrideValue) = 0;
  37.  
  38.   /* attribute long selectedIndex; */
  39.   NS_IMETHOD GetSelectedIndex(PRInt32 *aSelectedIndex) = 0;
  40.   NS_IMETHOD SetSelectedIndex(PRInt32 aSelectedIndex) = 0;
  41.  
  42.   /* readonly attribute boolean popupOpen; */
  43.   NS_IMETHOD GetPopupOpen(PRBool *aPopupOpen) = 0;
  44.  
  45.   /* void openPopup (in nsIAutoCompleteInput input, in long x, in long y, in long width); */
  46.   NS_IMETHOD OpenPopup(nsIAutoCompleteInput *input, PRInt32 x, PRInt32 y, PRInt32 width) = 0;
  47.  
  48.   /* void closePopup (); */
  49.   NS_IMETHOD ClosePopup(void) = 0;
  50.  
  51.   /* void invalidate (); */
  52.   NS_IMETHOD Invalidate(void) = 0;
  53.  
  54.   /* void selectBy (in boolean reverse, in boolean page); */
  55.   NS_IMETHOD SelectBy(PRBool reverse, PRBool page) = 0;
  56.  
  57. };
  58.  
  59. /* Use this macro when declaring classes that implement this interface. */
  60. #define NS_DECL_NSIAUTOCOMPLETEPOPUP \
  61.   NS_IMETHOD GetInput(nsIAutoCompleteInput * *aInput); \
  62.   NS_IMETHOD GetOverrideValue(nsAString & aOverrideValue); \
  63.   NS_IMETHOD GetSelectedIndex(PRInt32 *aSelectedIndex); \
  64.   NS_IMETHOD SetSelectedIndex(PRInt32 aSelectedIndex); \
  65.   NS_IMETHOD GetPopupOpen(PRBool *aPopupOpen); \
  66.   NS_IMETHOD OpenPopup(nsIAutoCompleteInput *input, PRInt32 x, PRInt32 y, PRInt32 width); \
  67.   NS_IMETHOD ClosePopup(void); \
  68.   NS_IMETHOD Invalidate(void); \
  69.   NS_IMETHOD SelectBy(PRBool reverse, PRBool page); 
  70.  
  71. /* Use this macro to declare functions that forward the behavior of this interface to another object. */
  72. #define NS_FORWARD_NSIAUTOCOMPLETEPOPUP(_to) \
  73.   NS_IMETHOD GetInput(nsIAutoCompleteInput * *aInput) { return _to GetInput(aInput); } \
  74.   NS_IMETHOD GetOverrideValue(nsAString & aOverrideValue) { return _to GetOverrideValue(aOverrideValue); } \
  75.   NS_IMETHOD GetSelectedIndex(PRInt32 *aSelectedIndex) { return _to GetSelectedIndex(aSelectedIndex); } \
  76.   NS_IMETHOD SetSelectedIndex(PRInt32 aSelectedIndex) { return _to SetSelectedIndex(aSelectedIndex); } \
  77.   NS_IMETHOD GetPopupOpen(PRBool *aPopupOpen) { return _to GetPopupOpen(aPopupOpen); } \
  78.   NS_IMETHOD OpenPopup(nsIAutoCompleteInput *input, PRInt32 x, PRInt32 y, PRInt32 width) { return _to OpenPopup(input, x, y, width); } \
  79.   NS_IMETHOD ClosePopup(void) { return _to ClosePopup(); } \
  80.   NS_IMETHOD Invalidate(void) { return _to Invalidate(); } \
  81.   NS_IMETHOD SelectBy(PRBool reverse, PRBool page) { return _to SelectBy(reverse, page); } 
  82.  
  83. /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */
  84. #define NS_FORWARD_SAFE_NSIAUTOCOMPLETEPOPUP(_to) \
  85.   NS_IMETHOD GetInput(nsIAutoCompleteInput * *aInput) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetInput(aInput); } \
  86.   NS_IMETHOD GetOverrideValue(nsAString & aOverrideValue) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetOverrideValue(aOverrideValue); } \
  87.   NS_IMETHOD GetSelectedIndex(PRInt32 *aSelectedIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetSelectedIndex(aSelectedIndex); } \
  88.   NS_IMETHOD SetSelectedIndex(PRInt32 aSelectedIndex) { return !_to ? NS_ERROR_NULL_POINTER : _to->SetSelectedIndex(aSelectedIndex); } \
  89.   NS_IMETHOD GetPopupOpen(PRBool *aPopupOpen) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetPopupOpen(aPopupOpen); } \
  90.   NS_IMETHOD OpenPopup(nsIAutoCompleteInput *input, PRInt32 x, PRInt32 y, PRInt32 width) { return !_to ? NS_ERROR_NULL_POINTER : _to->OpenPopup(input, x, y, width); } \
  91.   NS_IMETHOD ClosePopup(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->ClosePopup(); } \
  92.   NS_IMETHOD Invalidate(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->Invalidate(); } \
  93.   NS_IMETHOD SelectBy(PRBool reverse, PRBool page) { return !_to ? NS_ERROR_NULL_POINTER : _to->SelectBy(reverse, page); } 
  94.  
  95. #if 0
  96. /* Use the code below as a template for the implementation class for this interface. */
  97.  
  98. /* Header file */
  99. class nsAutoCompletePopup : public nsIAutoCompletePopup
  100. {
  101. public:
  102.   NS_DECL_ISUPPORTS
  103.   NS_DECL_NSIAUTOCOMPLETEPOPUP
  104.  
  105.   nsAutoCompletePopup();
  106.  
  107. private:
  108.   ~nsAutoCompletePopup();
  109.  
  110. protected:
  111.   /* additional members */
  112. };
  113.  
  114. /* Implementation file */
  115. NS_IMPL_ISUPPORTS1(nsAutoCompletePopup, nsIAutoCompletePopup)
  116.  
  117. nsAutoCompletePopup::nsAutoCompletePopup()
  118. {
  119.   /* member initializers and constructor code */
  120. }
  121.  
  122. nsAutoCompletePopup::~nsAutoCompletePopup()
  123. {
  124.   /* destructor code */
  125. }
  126.  
  127. /* readonly attribute nsIAutoCompleteInput input; */
  128. NS_IMETHODIMP nsAutoCompletePopup::GetInput(nsIAutoCompleteInput * *aInput)
  129. {
  130.     return NS_ERROR_NOT_IMPLEMENTED;
  131. }
  132.  
  133. /* readonly attribute AString overrideValue; */
  134. NS_IMETHODIMP nsAutoCompletePopup::GetOverrideValue(nsAString & aOverrideValue)
  135. {
  136.     return NS_ERROR_NOT_IMPLEMENTED;
  137. }
  138.  
  139. /* attribute long selectedIndex; */
  140. NS_IMETHODIMP nsAutoCompletePopup::GetSelectedIndex(PRInt32 *aSelectedIndex)
  141. {
  142.     return NS_ERROR_NOT_IMPLEMENTED;
  143. }
  144. NS_IMETHODIMP nsAutoCompletePopup::SetSelectedIndex(PRInt32 aSelectedIndex)
  145. {
  146.     return NS_ERROR_NOT_IMPLEMENTED;
  147. }
  148.  
  149. /* readonly attribute boolean popupOpen; */
  150. NS_IMETHODIMP nsAutoCompletePopup::GetPopupOpen(PRBool *aPopupOpen)
  151. {
  152.     return NS_ERROR_NOT_IMPLEMENTED;
  153. }
  154.  
  155. /* void openPopup (in nsIAutoCompleteInput input, in long x, in long y, in long width); */
  156. NS_IMETHODIMP nsAutoCompletePopup::OpenPopup(nsIAutoCompleteInput *input, PRInt32 x, PRInt32 y, PRInt32 width)
  157. {
  158.     return NS_ERROR_NOT_IMPLEMENTED;
  159. }
  160.  
  161. /* void closePopup (); */
  162. NS_IMETHODIMP nsAutoCompletePopup::ClosePopup()
  163. {
  164.     return NS_ERROR_NOT_IMPLEMENTED;
  165. }
  166.  
  167. /* void invalidate (); */
  168. NS_IMETHODIMP nsAutoCompletePopup::Invalidate()
  169. {
  170.     return NS_ERROR_NOT_IMPLEMENTED;
  171. }
  172.  
  173. /* void selectBy (in boolean reverse, in boolean page); */
  174. NS_IMETHODIMP nsAutoCompletePopup::SelectBy(PRBool reverse, PRBool page)
  175. {
  176.     return NS_ERROR_NOT_IMPLEMENTED;
  177. }
  178.  
  179. /* End of implementation class template. */
  180. #endif
  181.  
  182.  
  183. #endif /* __gen_nsIAutoCompletePopup_h__ */
  184.